/* FOOTER SECTION */
.footer-section {
  background-color: #440099;
}

.footer-content {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2rem;
  z-index: 2;
}

.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.footer-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.footer-col {
  flex: 1 1 200px;
  margin: 1rem;
  min-width: 200px;
}

.footer-col-title {
  font-size: 1.92em;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #f4eaff;
}

.footer-logo {
  display: flex;
  align-items: end;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.footer-logo img {
  width: 50px;
}

.footer-logo-head {
  font-size: 2.375em;
  color: #f4eaff;
  font-weight: 600;
}

.footer-description {
  margin-bottom: 1rem;
  font-size: 1.6em;
  color: #f4eaff;
}

.footer-socials a {
  display: inline-block;
  margin-right: 0.5rem;
  transition: transform 0.3s;
}

.footer-socials a i {
  font-size: 2.304em;
  color: #f4eaff;
}

.footer-socials a:hover {
  transform: scale(1.1);
}

.footer-links {
  list-style: none;
  line-height: 1.8;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: 1.6em;
  font-weight: 200;
  color: #f4eaff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  text-decoration: underline;
  color: #F4EBFF;
}

.footer-col p {
  font-size: 1.333em;
  font-weight: 200;
  line-height: 1.6;
  color: #f4eaff;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.subscribe-form input {
  padding: 0.6rem;
  border: 1px solid #ccc;
  background-color: #F4EBFF;
  border-radius: 4px;
  font-size: 1.333em;
  outline: none;
}

.subscribe-form button {
  pointer-events: none;
  background-color: #6c459c;
  color: #bebebe;
  border: none;
  border-radius: 4px;
  padding: 0.6rem;
  cursor: pointer;
  font-size: 1.6em;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.subscribe-form button span {
  font-size: 1.333em;
  transition: all 0.3s ease;
}

.subscribe-form button:hover span {
  margin-left: 1rem;
}

.footer-bottom {
  text-align: center;
  padding: 1rem 0;
  font-size: 1.6em;
  color: #f4eaff;
  border-top: #f4eaff 1px solid;
  font-weight: 200;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .footer-content {
    justify-content: center;
    padding: 3rem 1rem 1rem;
  }

  .footer-col {
    margin: 0.5rem 0;
  }

  .footer-wave {
    transform: translateY(-90%);
  }
}